home *** CD-ROM | disk | FTP | other *** search
- #
- # OSF1/options.mk --- part of Makefile PFE, compiler options for DEC OSF/1
- # on an Alpha workstation.
-
- PREFIX = /usr/local
- PFELIB = $(PREFIX)/lib/pfe
- PFEHLP = $(PFELIB)/help
-
- # No problems with the DEC compiler or gcc.
- # Global register variables work fine. Thus gcc is recommended.
-
- SYSTEM = OSF1
-
- CC = gcc -Wall
- OPTIM = -O2 -fomit-frame-pointer -DUSE_REGS
- DEBUG = -g -O
-
- #CC = cc
- #OPTIM = -O2
- #DEBUG = -g
-
- CL = $(CC)
- CPP = $(CC) -E
-
- STRIP = -s
- OPTIONS = -D_BSD -DUSE_TERMCAP
- TERM_O = termunix$o
- SYS_O = unix$o
- LFLAGS =
- LIBS = -ltermlib -lm
-
-
-